home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Math
- @Property: LOG10E - the value of the base 10 logarithm of e.
- @Syntax: Math.LOG10E
- @Summary: LOG10E - the value of the base 10 logarithm of e.
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("Math.LOG10E", selection);
- editor.setActive("Insert Math.LOG10E");
- }
- }
-
- !!/Script
-